home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / sxr302p.zip / PREINST.BAT < prev    next >
DOS Batch File  |  1993-01-01  |  952b  |  22 lines

  1. @echo off
  2. if not exist *.lis goto exit
  3. echo ------------------------------------------------------------------------
  4. echo Silver Xpress PreInstall Process
  5. echo ------------------------------------------------------------------------
  6. echo This process will create a directory called OLD off the Xpress directory
  7. echo and copy some older *.LIS files into this directory.   This process will
  8. echo ensure no older list file(s) are lost created since version 3.00 or 3.01
  9. echo The install process will put new list files in your Xpress directory.
  10. echo All you need to do is look in the OLD directory to retrieve the desired
  11. echo list file.
  12. echo ----------------------------------------------------------------------
  13. echo If you see a dos error command, ignore it.
  14. echo ----------------------------------------------------------------------
  15. pause
  16.  
  17. mkdir old
  18. copy *.lis old      > nul
  19. if exist xpread.clr copy xpread.clr old > nul
  20.  
  21. :exit
  22.